home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue68 / Soap / CalcTest / CalcTest.dfm < prev    next >
Encoding:
Text File  |  2001-03-03  |  2.0 KB  |  112 lines

  1. object Form1: TForm1
  2.   Left = 189
  3.   Top = 119
  4.   Width = 378
  5.   Height = 188
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'ITEC web services'
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 32
  19.     Top = 8
  20.     Width = 318
  21.     Height = 25
  22.     Caption = 'ITEC Calculator - web service test'
  23.     Font.Charset = ANSI_CHARSET
  24.     Font.Color = clWindowText
  25.     Font.Height = -21
  26.     Font.Name = 'Tahoma'
  27.     Font.Style = []
  28.     ParentFont = False
  29.   end
  30.   object Label2: TLabel
  31.     Left = 40
  32.     Top = 56
  33.     Width = 10
  34.     Height = 13
  35.     Caption = 'A:'
  36.   end
  37.   object Label3: TLabel
  38.     Left = 40
  39.     Top = 88
  40.     Width = 10
  41.     Height = 13
  42.     Caption = 'B:'
  43.   end
  44.   object Label4: TLabel
  45.     Left = 16
  46.     Top = 128
  47.     Width = 38
  48.     Height = 13
  49.     Caption = 'Answer:'
  50.   end
  51.   object btnAdd: TButton
  52.     Left = 184
  53.     Top = 48
  54.     Width = 75
  55.     Height = 25
  56.     Caption = 'Add'
  57.     TabOrder = 0
  58.     OnClick = btnAddClick
  59.   end
  60.   object btnDivide: TButton
  61.     Left = 184
  62.     Top = 80
  63.     Width = 75
  64.     Height = 25
  65.     Caption = 'Divide'
  66.     TabOrder = 1
  67.     OnClick = btnDivideClick
  68.   end
  69.   object btnMultiply: TButton
  70.     Left = 264
  71.     Top = 80
  72.     Width = 75
  73.     Height = 25
  74.     Caption = 'Multiply'
  75.     TabOrder = 2
  76.     OnClick = btnMultiplyClick
  77.   end
  78.   object btnSubtract: TButton
  79.     Left = 264
  80.     Top = 48
  81.     Width = 75
  82.     Height = 25
  83.     Caption = 'Subtract'
  84.     TabOrder = 3
  85.     OnClick = btnSubtractClick
  86.   end
  87.   object edtA: TEdit
  88.     Left = 56
  89.     Top = 48
  90.     Width = 121
  91.     Height = 21
  92.     TabOrder = 4
  93.     Text = '0'
  94.   end
  95.   object edtB: TEdit
  96.     Left = 56
  97.     Top = 80
  98.     Width = 121
  99.     Height = 21
  100.     TabOrder = 5
  101.     Text = '0'
  102.   end
  103.   object edtAnswer: TEdit
  104.     Left = 56
  105.     Top = 120
  106.     Width = 121
  107.     Height = 21
  108.     TabOrder = 6
  109.     Text = '0'
  110.   end
  111. end
  112.